home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #16 / 2001 CD 16 (Black).iso / BeoPlayer / data1.cab / Guide / print.js < prev    next >
Encoding:
Text File  |  2001-08-09  |  2.1 KB  |  73 lines

  1. // The code by Captain <cerebrum@iname.com>
  2. // Mead & Company, http://www.meadroid.com/wpm/
  3.  
  4. // fake print() for IE4.x
  5. if ( !printIsNativeSupport() )
  6.   window.print = printFrame;
  7.  
  8. // main stuff
  9. function printFrame(frame, onfinish) {
  10.   if ( !frame ) frame = window;
  11.  
  12.   if ( frame.document.readyState !== "complete" &&
  13.        !confirm("The document to print is not downloaded yet! Continue with printing?") )
  14.   {
  15.     if ( onfinish ) onfinish();
  16.     return;
  17.   }
  18.  
  19.   if ( printIsNativeSupport() ) {
  20.     /* focus handling for this scope is IE5Beta workaround,
  21.        should be gone with IE5 RTM.
  22.     */
  23.     var focused = document.activeElement; 
  24.     frame.focus();
  25.     frame.self.print();
  26.     if ( onfinish ) onfinish();
  27.     if ( focused && !focused.disabled ) focused.focus();
  28.     return;
  29.   }
  30.  
  31.   var eventScope = printGetEventScope(frame);
  32.   var focused = document.activeElement;
  33.  
  34.   window.printHelper = function() {
  35.     execScript("on error resume next: printWB.ExecWB 6, 1", "VBScript");
  36.     printFireEvent(frame, eventScope, "onafterprint");
  37.     printWB.outerHTML = "";
  38.     if ( onfinish ) onfinish();
  39.     if ( focused && !focused.disabled ) focused.focus();
  40.     window.printHelper = null;
  41.   }
  42.  
  43.   document.body.insertAdjacentHTML("beforeEnd",
  44.     "<object id=\"printWB\" width=0 height=0 \
  45.     classid=\"clsid:8856F961-340A-11D0-A96B-00C04FD705A2\"></object>");
  46.  
  47.   printFireEvent(frame, eventScope, "onbeforeprint");
  48.   frame.focus();
  49.   window.printHelper = printHelper;
  50.   setTimeout("window.printHelper()", 0);
  51. }
  52.  
  53. // helpers
  54. function printIsNativeSupport() {
  55.   var agent = window.navigator.userAgent;
  56.   var i = agent.indexOf("MSIE ")+5;
  57.   return parseInt(agent.substr(i)) >= 5 && agent.indexOf("5.0b1") < 0;
  58. }
  59.  
  60. function printFireEvent(frame, obj, name) {
  61.   var handler = obj[name];
  62.   switch ( typeof(handler) ) {
  63.     case "string": frame.execScript(handler); break;
  64.     case "function": handler();
  65.   }
  66. }
  67.  
  68. function printGetEventScope(frame) {
  69.   var frameset = frame.document.all.tags("FRAMESET");
  70.   if ( frameset.length ) return frameset[0];
  71.   return frame.document.body;
  72. }
  73.